projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
375ff4f
)
(print): Generate a backslash in \2e10.
author
Richard M. Stallman
<rms@gnu.org>
Sat, 22 Mar 1997 04:13:05 +0000
(
04:13
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sat, 22 Mar 1997 04:13:05 +0000
(
04:13
+0000)
src/print.c
patch
|
blob
|
history
diff --git
a/src/print.c
b/src/print.c
index f592f4a769c3fb116a85b17e51b571c34643e6f0..57f6ffdf82654489728c49c303ba39ee053a6fcb 100644
(file)
--- a/
src/print.c
+++ b/
src/print.c
@@
-1018,7
+1018,9
@@
print (obj, printcharfun, escapeflag)
confusing = 0;
else
{
- while (p != end && *p >= '0' && *p <= '9')
+ while (p != end && ((*p >= '0' && *p <= '9')
+ /* Needed for \2e10. */
+ || *p == 'e'))
p++;
confusing = (end == p);
}